home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 6 / QRZ Ham Radio Callsign Database - Volume 6.iso / pc / files / dsp / dspkgctr.z / dspkgctr / gcc / config / tm-dsp56k.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-08  |  36.2 KB  |  1,034 lines

  1. /* Definitions of target machine for GNU compiler, for the Motorola dsp56000
  2.    digital signal processing chip.
  3.    Copyright (C) 1988 Free Software Foundation, Inc.
  4.  
  5.    $Header: /usr1/dsp/cvsroot/source/gcc/config/tm-dsp56k.h,v 1.27 92/04/02 10:41:54 pete Exp $
  6.    $Id: tm-dsp56k.h,v 1.27 92/04/02 10:41:54 pete Exp $
  7.  
  8. This file is part of GNU CC.
  9.  
  10. GNU CC is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY.  No author or distributor
  12. accepts responsibility to anyone for the consequences of using it
  13. or for whether it serves any particular purpose or works at all,
  14. unless he says so in writing.  Refer to the GNU CC General Public
  15. License for full details.
  16.  
  17. Everyone is granted permission to copy, modify and redistribute
  18. GNU CC, but only under the conditions described in the
  19. GNU CC General Public License.   A copy of this license is
  20. supposed to have been given to you along with GNU CC so you
  21. can know your rights and responsibilities.  It should be in a
  22. file named COPYING.  Among other things, the copyright notice
  23. and this notice must be preserved on all copies.  */
  24.  
  25.  
  26. /* Note that some other tm- files include this one and then override
  27.    many of the definitions that relate to assembler syntax.  */
  28.  
  29. #define DSP56000 1
  30.  
  31. /* Turn on debugging output */
  32.  
  33. #define SDB_DEBUGGING_INFO
  34.  
  35. /* Names to predefine in the preprocessor for this target machine.  */
  36.  
  37. #define CPP_PREDEFINES "-DDSP56K"
  38.  
  39. /* Print subsidiary information on the compiler version in use.  */
  40. #define TARGET_VERSION fprintf (stderr, " Motorola DSP56000/1 %s", \
  41.                 motorola_version_string);
  42.  
  43. /* Run-time compilation parameters selecting different hardware subsets. */
  44. /* Not used on dsp56k */
  45.  
  46. extern int target_flags;
  47.  
  48. /* Macro to define tables used to set the flags.
  49.    This is a list in braces of pairs in braces,
  50.    each pair being { "NAME", VALUE }
  51.    where VALUE is the bits to set or minus the bits to clear.
  52.    An empty string NAME is used to identify the default VALUE.  */
  53.  
  54. #define DSP_ALL_OPTS                483
  55. #define TARGET_DSP                ( target_flags & DSP_ALL_OPTS )
  56. #define TARGET_LINV_PLUS_BIV_PROMOTION        ( target_flags & 1 )
  57. #define TARGET_DO_LOOP_GENERATION        ( target_flags & 2 )
  58. #define TARGET_X_MEMORY                 ( target_flags & 4 )
  59. #define TARGET_Y_MEMORY                ( target_flags & 8 )
  60. #define TARGET_L_MEMORY                ( target_flags & 16 )
  61. #define TARGET_CALL_OVERHEAD_REDUCTION        ( target_flags & 32 )
  62. #define TARGET_REP                ( target_flags & 64 )
  63. #define TARGET_RELOAD_CLEANUP            ( target_flags & 128 )
  64. #define TARGET_NORMALIZATION_REDUCTION          ( target_flags & 256 )
  65. #define TARGET_STACK_CHECK            ( target_flags & 4096 )
  66. #define TARGET_SWITCHES        \
  67.   {{ "dsp", DSP_ALL_OPTS },                       \
  68.    { "no-dsp", -DSP_ALL_OPTS },                 \
  69.    { "linv-plus-biv-promotion", 1 },        \
  70.    { "no-linv-plus-biv-promotion", -1 },    \
  71.    { "do-loop-generation", 2 },            \
  72.    { "no-do-loop-generation", -2 },        \
  73.    { "x-memory", 4 },                \
  74.    { "y-memory", 8 },                \
  75.    { "l-memory", 16 },                \
  76.    { "call-overhead-reduction", 32 },           \
  77.    { "no-call-overhead-reduction", -32 },       \
  78.    { "rep", 64 },                \
  79.    { "no-rep", -64 },                \
  80.    { "reload-cleanup", 128 },            \
  81.    { "no-reload-cleanup", -128 },        \
  82.    { "normalization-reduction", 256 },          \
  83.    { "no-normalization-reduction", -256 },      \
  84.    { "stack-check", 4096 },                     \
  85.    { "no-stack-check", 4096 },                  \
  86.    { "", TARGET_DEFAULT}}
  87.  
  88. #define TARGET_DEFAULT ( 8 + DSP_ALL_OPTS )
  89.  
  90. /* target machine storage layout */
  91.  
  92. /* Define this if most significant bit is lowest numbered
  93.    in instructions that operate on numbered bit-fields.  */
  94. /* m96k is numbered 31..0 */
  95. #undef BITS_BIG_ENDIAN
  96.  
  97. /* Define this if most significant byte of a word is the lowest numbered.  */
  98. /* has no byte address but if it did they would look like 3..2..1..0 */
  99. #undef BYTES_BIG_ENDIAN
  100.  
  101. /* Define this if most significant word of a multiword object has the lowest
  102.    is number. */
  103. /* m56k has multiword objects: 48 bit longs. */
  104. #undef WORDS_BIG_ENDIAN 
  105.  
  106. /* number of bits in an addressible storage unit. m56k has word addressing */
  107. #define BITS_PER_UNIT 24
  108. #define CHAR_TYPE_SIZE 24
  109. #define SHORT_TYPE_SIZE 24
  110. #define LONG_TYPE_SIZE 48
  111. #define LONG_LONG_TYPE_SIZE LONG_TYPE_SIZE
  112. #define FLOAT_TYPE_SIZE (( 'l' == memory_model ) ? 24 : 48 )
  113. #define DOUBLE_TYPE_SIZE FLOAT_TYPE_SIZE
  114. #define LONG_DOUBLE_TYPE_SIZE DOUBLE_TYPE_SIZE
  115.  
  116. /* the maximum nesting depth of do-loops allowed. */
  117. #define MAX_DO_LOOP_NESTING 3
  118.  
  119. /* Width in bits of a "word", which is the contents of a machine register.
  120.    Note that this is not necessarily the width of data type `int';
  121.    if using 16-bit ints on a 68000, this would still be 32.
  122.    But on a machine with 16-bit registers, this would be 16.  */
  123. #define BITS_PER_WORD 24
  124.  
  125. /* Width of a word, in units (bytes).  */
  126. /* m56k has word addressing */
  127. #define UNITS_PER_WORD 1
  128.  
  129. /* Width in bits of a pointer.
  130.    See also the macro `Pmode' defined below.  */
  131. #define POINTER_SIZE 16
  132.  
  133. /* Allocation boundary (in *bits*) for storing pointers in memory.  */
  134. #define POINTER_BOUNDARY 24
  135.  
  136. /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
  137. #define PARM_BOUNDARY 24
  138.  
  139. /* Allocation boundary (in *bits*) for the code of a function.  */
  140. #define FUNCTION_BOUNDARY 24
  141.  
  142. /* Alignment of field after `int : 0' in a structure.  */
  143. #define EMPTY_FIELD_BOUNDARY 24
  144.  
  145. /* No data type wants to be aligned rounder than this.  */
  146. #define BIGGEST_ALIGNMENT 24
  147.  
  148. /* Define this if move instructions will actually fail to work
  149.    when given unaligned data.  */
  150. /* m56k cannot have unaligned data */
  151. #define STRICT_ALIGNMENT
  152.  
  153. /* Standard register usage.  */
  154.  
  155. /*
  156.   Number of actual hardware registers.
  157.   The hardware registers are assigned numbers for the compiler
  158.   from 0 to just below FIRST_PSEUDO_REGISTER.
  159.   All registers that the compiler knows about must be given numbers,
  160.   even those that are not normally considered general registers.
  161.  
  162.   for the 56k, we have X1,X0,Y1,Y0,A,B and R0-r7. N0-N7 remain unknown
  163.   to the compiler so that the addressing mode of Rx+const so loved
  164.   by gcc can be fixed up into Rx+Nx.
  165. */
  166. #define FIRST_PSEUDO_REGISTER 14
  167.  
  168. /* 1 for registers that have pervasive standard uses
  169.    and are not available for the register allocator.
  170.  
  171.    for the m56k:
  172.  
  173.    0..5    = (a, b, x0, x1, y0, y1)
  174.    6       = (r0) frame pointer.
  175.    7..11   = (r1, r2, r3, r4, r5)
  176.    12      = (r6) stack pointer.
  177.    13      = (r7)
  178. */
  179. #define DSP56_A_REGNUM 0
  180. #define DSP56_B_REGNUM 1
  181. #define DSP56_X0_REGNUM 2
  182. #define DSP56_X1_REGNUM 3
  183. #define DSP56_Y0_REGNUM 4
  184. #define DSP56_Y1_REGNUM 5
  185.  
  186. #define FIXED_REGISTERS   \
  187.  {0, 0, 0, 0, 0, 0,       \
  188.   1, 0, 0, 0, 0, 0, 1, 0}
  189.  
  190. /* Like FIXED_REGISTERS but has a 1 for each register that is clobbered
  191.    ( in general ) by function calls. This macro therefore identifies the
  192.    registers that are not available for general allocation of values that
  193.    live across function calls.
  194.    If a register has 0 in CALL_USED_REGISTERS the compiler automatically
  195.    saves it on function entry if the register is used within that function.
  196.  
  197.    These must include the FIXED_REGISTERS and also any
  198.    registers that can be used without being saved.
  199.    The latter must include the registers where values are returned
  200.    and the register where structure-value addresses are passed.
  201.    Aside from that, you can include as many other registers as you like.  */
  202. /* with the 56k arguments will be returned in a. */
  203. #define CALL_USED_REGISTERS  \
  204.  {1, 0, 0, 0, 0, 0,          \
  205.   1, 0, 0, 0, 0, 0, 1, 0}
  206.  
  207. /* Return number of consecutive hard regs needed starting at reg REGNO
  208.    to hold something of mode MODE.
  209.    This is ordinarily the length in words of a value of mode MODE
  210.    but can be less for certain modes in special long registers.
  211.  
  212.    m56k puts floats/doubles into 48 bit regs, longs into 48 bit regs. */
  213.  
  214. #define HARD_REGNO_NREGS( REGNO, MODE ) \
  215.     ((( DFmode == MODE || SFmode == MODE || DImode == MODE ) && \
  216.       ( REGNO != DSP56_A_REGNUM ) && ( REGNO != DSP56_B_REGNUM )) ? 2 : 1 )
  217.   
  218. /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE. */
  219.  
  220. #define HARD_REGNO_MODE_OK( REGNO, MODE )        \
  221.     hard_regno_mode_ok( REGNO, MODE )
  222.  
  223. /* Value is 1 if it is a good idea to tie two pseudo registers
  224.    when one has mode MODE1 and one has mode MODE2.
  225.    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
  226.    for any hard reg, then this must be 0 for correct output.  */
  227.  
  228. #define MODES_TIEABLE_P(MODE1, MODE2) \
  229.     modes_tieable_p( MODE1, MODE2 )
  230.  
  231. /* Specify the registers used for certain standard purposes.
  232.    The values of these macros are register numbers.  */
  233.  
  234. /* m56k has a dedicated pc */
  235. #undef PC_REGNUM
  236.  
  237. /* Register to use for pushing function arguments.  */
  238. #define STACK_POINTER_REGNUM 12
  239.  
  240. /* Base register for access to local variables of the function.  */
  241. #define FRAME_POINTER_REGNUM 6
  242.  
  243. /* Value should be nonzero if functions must have frame pointers.
  244.    Zero means the frame pointer need not be set up (and parms
  245.    may be accessed via the stack pointer) in functions that seem suitable.
  246.    This is computed in `reload', in reload1.c.  */
  247. #define FRAME_POINTER_REQUIRED 1
  248.  
  249. /* Base register for access to arguments of the function.  */
  250. /* m56k uses the frame pointer (r6) to as the argument pointer */
  251. #define ARG_POINTER_REGNUM FRAME_POINTER_REGNUM
  252.  
  253. /* Register in which static-chain is passed to a function.  */
  254. /* This is currently not used but this may change for pascal or ada or ... */
  255. #define STATIC_CHAIN_REGNUM DSP56_A_REGNUM
  256.  
  257. /* Register in which address to store a structure value
  258.    is passed to a function.  */
  259. #define STRUCT_VALUE_REGNUM DSP56_A_REGNUM
  260.  
  261.  
  262. /* Define the classes of registers for register constraints in the
  263.    machine description.  Also define ranges of constants.
  264.  
  265.    One of the classes must always be named ALL_REGS and include all hard regs.
  266.    If there is more than one class, another class must be named NO_REGS
  267.    and contain no registers.
  268.  
  269.    The name GENERAL_REGS must be the name of a class (or an alias for
  270.    another name such as ALL_REGS).  This is the class of registers
  271.    that is allowed by "g" or "r" in a register constraint.
  272.    Also, registers outside this class are allocated only when
  273.    instructions express preferences for them.
  274.  
  275.    The classes must be numbered in nondecreasing order; that is,
  276.    a larger-numbered class must never be contained completely
  277.    in a smaller-numbered class.
  278.  
  279.    For any two classes, it is very desirable that there be another
  280.    class that represents their union.  */
  281.    
  282. enum reg_class
  283. {
  284.     NO_REGS,
  285.     DST_REGS,     /* All-mode destination registers: a, b */
  286.     ADDR_REGS,    /* PSImode registers: r0-r7 */
  287.     MPY_REGS,      /* source regs valid for mpy/mac multiplier x0,y0. */
  288.     SRC_REGS,     /* All-mode source registers: x1, x0, y1, y0 */
  289.     ALL_REGS,
  290.     LIM_REG_CLASSES
  291. };
  292.  
  293. #define N_REG_CLASSES (int) LIM_REG_CLASSES
  294.  
  295. /* Since GENERAL_REGS is the same class as NO_REGS,
  296.    don't give it a different class number; just make it an alias.  */
  297.  
  298. #define GENERAL_REGS NO_REGS
  299.  
  300. /* Give names of register classes as strings for dump file.   */
  301.  
  302. #define REG_CLASS_NAMES { \
  303.     "NO_REGS", "DST_REGS", "ADDR_REGS",\
  304.         "MPY_REGS","SRC_REGS", "ALL_REGS" }
  305.  
  306. /* Define which registers fit in which classes.
  307.    This is an initializer for a vector of HARD_REG_SET
  308.    of length N_REG_CLASSES.  */
  309.  
  310. #define REG_CLASS_CONTENTS {            \
  311.     000000000000, /* NO_REGS */        \
  312.     000000000003, /* DST_REGS */        \
  313.     000000037700, /* ADDR_REGS */        \
  314.     000000000024, /* MPY_REGS */        \
  315.     000000000074, /* SRC_REGS */        \
  316.     000000037777  /* ALL_REGS */    }
  317.  
  318. /* The same information, inverted:
  319.    Return the class number of the smallest class containing
  320.    reg number REGNO.  This could be a conditional expression
  321.    or could index an array.  */
  322.  
  323. #define REGNO_REG_CLASS(REGNO)                    \
  324.     regno_reg_class ( REGNO )
  325.  
  326. #define IS_SRC_OR_MPY_P(REGNO)                    \
  327.     ( SRC_REGS == REGNO_REG_CLASS( REGNO ) ||        \
  328.       MPY_REGS == REGNO_REG_CLASS( REGNO ))
  329.  
  330. /* The class value for index registers, and the one for base regs.  */
  331. #define INDEX_REG_CLASS ADDR_REGS
  332. #define BASE_REG_CLASS ADDR_REGS
  333.  
  334. /* Get reg_class from a letter such as appears in the machine description.  */
  335.  
  336. #define REG_CLASS_FROM_LETTER(C)                \
  337.     reg_class_from_letter( C )
  338.  
  339. /* The letters I, J, K, L and M in a register constraint string
  340.    can be used to stand for particular ranges of immediate operands.
  341.    This macro defines what the ranges are.
  342.    C is the letter, and VALUE is a constant value.
  343.    Return 1 if VALUE is in the range specified by C.
  344. */
  345. #define CONST_OK_FOR_LETTER_P(VALUE, C)             \
  346.     ( 'J' != ( C ) || ( ! ( 0xfffff000 & ( VALUE ))))
  347.  
  348. /* Similar, but for floating constants, and defining letters G and H.
  349.    Here VALUE is the CONST_DOUBLE rtx itself.  */
  350.  
  351. #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) 1
  352.  
  353. /* Given an rtx X being reloaded into a reg required to be
  354.    in class CLASS, return the class of reg to actually use.
  355.    In general this is just CLASS; but on some machines
  356.    in some cases it is preferable to use a more restrictive class.  */
  357. #define PREFERRED_RELOAD_CLASS(X,CLASS) CLASS
  358.  
  359. /* Return the maximum number of consecutive registers
  360.    needed to represent mode MODE in a register of class CLASS.  */
  361.  
  362. #define CLASS_MAX_NREGS(CLASS,MODE)                    \
  363.     class_max_nregs ( CLASS, MODE )
  364.  
  365. /* Stack layout; function entry, exit and calling.  */
  366.  
  367. #define PUSH_ARGS_REVERSED
  368.  
  369. /* Define this if pushing a word on the stack
  370.    makes the stack pointer a smaller address.  */
  371. #undef STACK_GROWS_DOWNWARD
  372.  
  373. /* Define this if the nominal address of the stack frame
  374.    is at the high-address end of the local variables;
  375.    that is, each additional local variable allocated
  376.    goes at a more negative offset in the frame. */
  377.  
  378. #undef FRAME_GROWS_DOWNWARD 
  379.  
  380. /* Offset within stack frame to start allocating local variables at.
  381.    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
  382.    first local allocated.  Otherwise, it is the offset to the BEGINNING
  383.    of the first local allocated.  */
  384. #define STARTING_FRAME_OFFSET 0
  385.  
  386. /* If we generate an insn to push BYTES bytes,
  387.    this says how many the stack pointer really advances by. */
  388. #define PUSH_ROUNDING(BYTES) ( BYTES )
  389.  
  390. /* If BYTES is the size of arguments for a function call,
  391.    return the size of the argument block (which is BYTES suitably rounded).
  392.    Define this only on machines where the entire call block is allocated
  393.    before the args are stored into it.  */
  394.    
  395. #undef ROUND_CALL_BLOCK_SIZE
  396.  
  397. /* Offset of first parameter from the argument pointer register value.  */
  398. #define FIRST_PARM_OFFSET(FNDECL) \
  399.     local_first_parm_offset ( FNDECL )
  400.  
  401. /* Value is 1 if returning from a function call automatically
  402.    pops the arguments described by the number-of-args field in the call.
  403.    FUNTYPE is the data type of the function (as a tree),
  404.    or for a library call it is an identifier node for the subroutine name.  */
  405.  
  406. #define RETURN_POPS_ARGS(FUNTYPE) 1
  407.  
  408. /* Define how to find the value returned by a function.
  409.    VALTYPE is the data type of the value (as a tree).
  410.    If the precise function being called is known, FUNC is its FUNCTION_DECL;
  411.    otherwise, FUNC is 0.  */
  412. #define LIBCALL_VALUE(MODE)  (gen_rtx ( REG, MODE, DSP56_A_REGNUM ))
  413.  
  414. #define FUNCTION_VALUE(VALTYPE, FUNC)  LIBCALL_VALUE ( TYPE_MODE (VALTYPE) )
  415.  
  416. /* Define how to find the value returned by a library function
  417.    assuming the value has mode MODE.  */
  418.  
  419. /* 1 if N is a possible register number for a function value
  420.    as seen by the caller.*/
  421.  
  422. #define FUNCTION_VALUE_REGNO_P(N) ( DSP56_A_REGNUM == ( N ))
  423.  
  424. /* 1 if N is a possible register number for function argument passing. */
  425.  
  426. #define FUNCTION_ARG_REGNO_P(N) 0
  427.  
  428. /* Define a data type for recording info about an argument list
  429.    during the scan of that argument list.  This data type should
  430.    hold all necessary information about the function itself
  431.    and about the args processed so far, enough to enable macros
  432.    such as FUNCTION_ARG to determine where the next arg should go.
  433. */
  434. #define CUMULATIVE_ARGS int
  435.  
  436. /* Initialize a variable CUM of type CUMULATIVE_ARGS
  437.    for a call to a function whose data type is FNTYPE.
  438.    For a library call, FNTYPE is 0.
  439. */
  440. #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE) ((CUM) = 0)
  441.  
  442. /* Update the data in CUM to advance over an argument
  443.    of mode MODE and data type TYPE.
  444.    (TYPE is null for libcalls where that information may not be available.)  */
  445.  
  446. #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) ((CUM) ++)
  447.  
  448. /* Determine where to put an argument to a function.
  449.    Value is zero to push the argument on the stack,
  450.    or a hard register in which to store the argument.
  451.  
  452.    MODE is the argument's machine mode.
  453.    TYPE is the data type of the argument (as a tree).
  454.     This is null for libcalls where that information may
  455.     not be available.
  456.    CUM is a variable of type CUMULATIVE_ARGS which gives info about
  457.     the preceding args and about the function being called.
  458.    NAMED is nonzero if this argument is a named parameter
  459.     (otherwise it is an extra parameter matching an ellipsis).  */
  460.  
  461. #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) 0
  462.  
  463. /* Define where a function finds its arguments.
  464.    This would be different from FUNCTION_ARG if we had register windows.  */
  465.  
  466. #define FUNCTION_INCOMING_ARG(CUM, MODE, TYPE, NAMED)    \
  467.     local_function_incoming_arg ( CUM, MODE, TYPE, NAMED )
  468.  
  469. /* For an arg passed partly in registers and partly in memory,
  470.    this is the number of registers used.
  471.    For args passed entirely in registers or entirely in memory, zero.  */
  472.  
  473. #define FUNCTION_ARG_PADDING(A,B) none
  474. #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0
  475. #undef FUNCTION_ARG_PARTIAL_NREGS
  476.  
  477. /* This macro generates the assembly code for function entry.
  478.    FILE is a stdio stream to output the code to.
  479.    SIZE is an int: how many units of temporary storage to allocate.
  480.    Refer to the array `regs_ever_live' to determine which registers
  481.    to save; `regs_ever_live[I]' is nonzero if register number I
  482.    is ever used in the function.  This macro is responsible for
  483.    knowing which registers should not be saved even if used.  */
  484.  
  485. #define FUNCTION_PROLOGUE(FILE, SIZE) function_logue ( FILE, SIZE, 0 )
  486.  
  487. /* Output assembler code to FILE to increment profiler label # LABELNO
  488.    for profiling a function entry. */
  489.  
  490. #define FUNCTION_PROFILER(FILE, LABELNO) 
  491.  
  492. /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
  493.    the stack pointer does not matter.  The value is tested only in
  494.    functions that have frame pointers.
  495.    No definition is equivalent to always zero.  */
  496.  
  497. #define EXIT_IGNORE_STACK 0
  498.  
  499. /* This macro generates the assembly code for function exit,
  500.    on machines that need it.  If FUNCTION_EPILOGUE is not defined
  501.    then individual return instructions are generated for each
  502.    return statement.  Args are same as for FUNCTION_PROLOGUE.
  503.  
  504.    The function epilogue should not depend on the current stack pointer!
  505.    It should use the frame pointer only.  This is mandatory because
  506.    of alloca; we also take advantage of it to omit stack adjustments
  507.    before returning.  */
  508.  
  509. #define FUNCTION_EPILOGUE(FILE, SIZE) function_logue ( FILE, SIZE, 1 )
  510.  
  511. /* If the memory address ADDR is relative to the frame pointer,
  512.    correct it to be relative to the stack pointer instead.
  513.    This is for when we don't use a frame pointer.
  514.    ADDR should be a variable name.  */
  515.  
  516. #define FIX_FRAME_POINTER_ADDRESS(ADDR,DEPTH)
  517.  
  518. /* Addressing modes, and classification of registers for them.  */
  519.  
  520. #define HAVE_POST_INCREMENT
  521. #define HAVE_POST_DECREMENT
  522.  
  523. #undef HAVE_PRE_DECREMENT
  524. #undef HAVE_PRE_INCREMENT 
  525.  
  526. /* Macros to check register numbers against specific register classes.  */
  527.  
  528. /* These assume that REGNO is a hard or pseudo reg number.
  529.    They give nonzero only if REGNO is a hard reg of the suitable class
  530.    or a pseudo reg currently allocated to a suitable hard reg.
  531.    Since they use reg_renumber, they are safe only once reg_renumber
  532.    has been allocated, which happens in local-alloc.c.  */
  533.  
  534. #define REGNO_OK_FOR_BASE_P(REGNO)                  \
  535.     (( 5 < REGNO && 14 > REGNO ) ||                \
  536.      ( 5 < reg_renumber[REGNO] && 14 > reg_renumber[REGNO]))
  537.  
  538. #define REGNO_OK_FOR_INDEX_P(REGNO)                 \
  539.     (( 5 < REGNO && 14 > REGNO ) ||                \
  540.      ( 5 < reg_renumber[REGNO] && 14 > reg_renumber[REGNO]))
  541.  
  542. /* Now macros that check whether X is a register and also,
  543.    strictly, whether it is in a specified class. */
  544.  
  545. /* Maximum number of registers that can appear in a valid memory address.  */
  546.  
  547. #define MAX_REGS_PER_ADDRESS 1
  548.  
  549. /* Recognize any constant value that is a valid address.  */
  550.  
  551. #define CONSTANT_ADDRESS_P(X)  CONSTANT_P(X)
  552.  
  553. /* Nonzero if the constant value X is a legitimate general operand.
  554.    It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */
  555.  
  556. #define LEGITIMATE_CONSTANT_P(X) (CONSTANT_P(X)||CONST_DOUBLE==GET_CODE(X))
  557.  
  558. /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
  559.    and check its validity for a certain class.
  560.    We have two alternate definitions for each of them.
  561.    The usual definition accepts all pseudo regs; the other rejects
  562.    them unless they have been allocated suitable hard regs.
  563.    The symbol REG_OK_STRICT causes the latter definition to be used.
  564.  
  565.    Most source files want to accept pseudo regs in the hope that
  566.    they will get allocated to the class that the insn wants them to be in.
  567.    Source files for reload pass need to be strict.
  568.    After reload, it makes no difference, since pseudo regs have
  569.    been eliminated by then.  */
  570.  
  571. #ifndef REG_OK_STRICT
  572.  
  573. /*
  574.  * Nonzero if X is a hard reg that can be used as an index
  575.  * or if it is a pseudo reg.
  576.  */
  577. #define REG_OK_FOR_INDEX_P(X)                         \
  578.     ( REG_P ( X ) &&                                                    \
  579.      (( REGNO ( X ) >= FIRST_PSEUDO_REGISTER ) ||                       \
  580.       ( REGNO ( X ) > 5 && REGNO ( X ) < 14 )))
  581. /*
  582.  * Nonzero if X is a hard reg that can be used as a base reg
  583.  * or if it is a pseudo reg.
  584.  */
  585. #define REG_OK_FOR_BASE_P(X)                          \
  586.     ( REG_P ( X ) &&                                                    \
  587.      (( REGNO ( X ) >= FIRST_PSEUDO_REGISTER ) ||                       \
  588.       ( REGNO ( X ) > 5 && REGNO ( X ) < 14 )))
  589.  
  590. #else
  591.  
  592. /* Nonzero if X is a hard reg that can be used as an index.  */
  593. #define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))
  594.  
  595. /* Nonzero if X is a hard reg that can be used as a base reg.  */
  596. #define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
  597.  
  598. #endif
  599.  
  600. /* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
  601.    that is a valid memory address for an instruction.
  602.    The MODE argument is the machine mode for the MEM expression
  603.    that wants to use this address.
  604. */
  605.  
  606. #ifdef REG_OK_STRICT
  607. #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)         \
  608.     if ( go_if_legitimate_address ( MODE, X, 1 ) ) goto ADDR;
  609. #else
  610. #define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR)         \
  611.     if ( go_if_legitimate_address ( MODE, X, 0 ) ) goto ADDR;
  612. #endif
  613.  
  614. /* Try machine-dependent ways of modifying an illegitimate address
  615.    to be legitimate.  If we find one, return the new, valid address.
  616.    This macro is used in only one place: `memory_address' in explow.c.
  617.  
  618.    OLDX is the address as it was before break_out_memory_refs was called.
  619.    In some cases it is useful to look at this to decide what needs to be done.
  620.  
  621.    MODE and WIN are passed so that this macro can use
  622.    GO_IF_LEGITIMATE_ADDRESS.
  623.  
  624.    It is always safe for this macro to do nothing.  It exists to recognize
  625.    opportunities to optimize the output.  */
  626.  
  627. #define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)
  628.  
  629. /* Go to LABEL if ADDR (a legitimate address expression)
  630.    has an effect that depends on the machine mode it is used for. */
  631.  
  632. #define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)
  633.  
  634.  
  635. /* Specify the machine mode that this machine uses
  636.    for the index in the tablejump instruction.  */
  637. #define CASE_VECTOR_MODE PSImode
  638.  
  639. /* Define this if a raw index is all that is needed for a
  640.    `tablejump' insn.  */
  641. #undef CASE_TAKES_INDEX_RAW
  642.  
  643. /* Define this if the tablejump instruction expects the table
  644.    to contain offsets from the address of the table.
  645.    Do not define this if the table should contain absolute addresses.  */
  646. #undef CASE_VECTOR_PC_RELATIVE
  647.  
  648. /* Specify the tree operation to be used to convert reals to integers.  */
  649. #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR
  650.  
  651. /* This is the kind of divide that is easiest to do in the general case.  */
  652. #define EASY_DIV_EXPR TRUNC_DIV_EXPR
  653.  
  654. /* Define this as 1 if `char' should by default be signed; else as 0.  */
  655. #define DEFAULT_SIGNED_CHAR 1
  656.  
  657. /* Max number of bytes we can move from memory to memory
  658.    in one reasonably fast instruction.  */
  659. #define MOVE_MAX 1
  660.  
  661. /* We can't use move by pieces due to l space problems. */
  662. #define MOVE_RATIO 0
  663. #define MOVE_RATIO_56 5
  664.  
  665. /* Nonzero if access to memory by bytes is slow and undesirable.  */
  666. #define SLOW_BYTE_ACCESS 1
  667.  
  668. /* Do not break .stabs pseudos into continuations.  */
  669. #define DBX_CONTIN_LENGTH 0
  670.  
  671. /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
  672.    is done just by pretending it is already truncated.  */
  673. #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) ( LONG_TYPE_SIZE != INPREC )
  674.  
  675. /* We assume that the store-condition-codes instructions store 0 for false
  676.    and some other value for true.  This is the value stored for true.  */
  677.  
  678. #define STORE_FLAG_VALUE 1
  679.  
  680. /* Specify the machine mode that pointers have.
  681.    After generation of rtl, the compiler makes no further distinction
  682.    between pointers and any other objects of this machine mode.  */
  683. #define Pmode PSImode
  684.  
  685. /* A function address in a call instruction
  686.    is a byte address (for indexing purposes)
  687.    so give the MEM rtx a byte's mode.  */
  688. #define FUNCTION_MODE PSImode
  689.  
  690. /* Define this if addresses of constant functions
  691.    shouldn't be put through pseudo regs where they can be cse'd.
  692.    Desirable on machines where ordinary constants are expensive
  693.    but a CALL with constant address is cheap.  */
  694. #undef NO_FUNCTION_CSE
  695.  
  696. /* Compute the cost of computing a constant rtl expression RTX
  697.    whose rtx-code is CODE.  The body of this macro is a portion
  698.    of a switch statement.  If the code is computed here,
  699.    return it with a return statement.  Otherwise, break from the switch.  */
  700.  
  701. #define CONST_COSTS(RTX,CODE) \
  702.   case CONST_INT:                        \
  703.   case CONST:                            \
  704.   case LABEL_REF:                        \
  705.   case SYMBOL_REF:                        \
  706.   case CONST_DOUBLE:                        \
  707.     return 2;
  708.  
  709. /* Store in cc_status the expressions
  710.    that the condition codes will describe
  711.    after execution of an instruction whose pattern is EXP.
  712.    Do not alter them if the instruction would not alter the cc's.  */
  713.  
  714. #define NOTICE_UPDATE_CC(EXP, INSN) notice_update_cc ( EXP, INSN )
  715.  
  716. enum mdep_cc_info { CC_UNKNOWN, CC_UNSIGNED, CC_SIGNED };
  717. #define CC_STATUS_MDEP enum mdep_cc_info
  718. #define CC_STATUS_MDEP_INIT CC_UNKNOWN
  719.  
  720.  
  721. /* Control the assembler format that we output.  */
  722.  
  723. /* Output at beginning of assembler file.  */
  724.  
  725. #define ASM_FILE_START(FILE) asm_file_start ( FILE ) 
  726.  
  727. #define ASM_FILE_END(FILE) asm_file_end ( FILE )
  728.  
  729. /* Output to assembler file text saying following lines
  730.    may contain character constants, extra white space, comments, etc.  */
  731. extern char* asm_app_toggle ();
  732. #define ASM_APP_ON asm_app_toggle ()
  733.  
  734. /* Output to assembler file text saying following lines
  735.    no longer contain unusual constructs.  */
  736.  
  737. #define MAX_TEXT_ALIGN 1
  738.  
  739. #define ASM_APP_OFF asm_app_toggle ()
  740.  
  741. #define SELECT_RTX_SECTION(MODE,X)\
  742. {\
  743.     data_section ( );\
  744. }
  745.  
  746. #define SELECT_SECTION(DECL)\
  747. {\
  748.     if ( FUNCTION_DECL == TREE_CODE ( DECL ))\
  749.     {\
  750.     text_section ( );\
  751.     }\
  752.     else\
  753.     {\
  754.     data_section ( );\
  755.     }\
  756. }
  757.  
  758.  
  759. /* Output before read-only data.  */
  760.  
  761. char *text_section_asm_op ( );
  762. #define TEXT_SECTION_ASM_OP text_section_asm_op ( )
  763.  
  764. /* Output before writable data.  */
  765.  
  766. char *data_section_asm_op ( );
  767. #define DATA_SECTION_ASM_OP data_section_asm_op ( )
  768.  
  769. /* How to refer to registers in assembler output.
  770.    This sequence is indexed by compiler's hard-register-number (see above).  */
  771.  
  772. #define REGISTER_NAMES                     \
  773. { "a", "b", "x0", "x1", "y0", "y1",            \
  774.   "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7" }
  775.  
  776. /* How to renumber registers for dbx and gdb.  */
  777.  
  778. #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
  779.  
  780. /* This is how to output the definition of a user-level label named NAME,
  781.    such as the label on a static function or variable NAME.  */
  782.  
  783. #define ASM_IDENTIFY_GCC(FILE) fprintf ( FILE, ";*** DSP56000/1 %s GNU %s\n", motorola_version_string, version_string );
  784.  
  785. #define ASM_OUTPUT_LABEL(FILE,NAME)    \
  786.   do { assemble_name (FILE, NAME); fputs ("\n", FILE); } while (0)
  787.  
  788. /* This is how to output a command to make the user-level label named NAME
  789.    defined for reference from other files.  */
  790.  
  791. #define ASM_GLOBALIZE_LABEL(FILE,NAME)    \
  792. ( fputs ("\tglobal\t", FILE), assemble_name (FILE, NAME), fputs ("\n", FILE) )
  793.  
  794. /* This is how to output a reference to a user-level label named NAME.
  795.    `assemble_name' uses this.  */
  796.  
  797. #define ASM_OUTPUT_LABELREF(FILE,NAME)    \
  798.   fprintf (FILE, "F%s", NAME)
  799.  
  800. /* This is how to output an internal numbered label where
  801.    PREFIX is the class of label and NUM is the number within the class.  */
  802.  
  803. #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)    \
  804.   fprintf (FILE, "%s%d\n", PREFIX, NUM)
  805.  
  806. /* This is how to store into the string LABEL
  807.    the symbol_ref name of an internal numbered label where
  808.    PREFIX is the class of label and NUM is the number within the class.
  809.    This is suitable for output with `assemble_name'.  */
  810.  
  811. #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)    \
  812.   sprintf (LABEL, "*%s%d", PREFIX, NUM)
  813.  
  814. /* This is how to output an assembler line defining a `double' constant.  */
  815.  
  816. void dtok ( );
  817.  
  818. #define ASM_OUTPUT_DOUBLE(FILE,VALUE)  \
  819.   (dtok( FILE, VALUE ))
  820.  
  821. /* This is how to output an assembler line defining a `float' constant.  */
  822.  
  823. #define ASM_OUTPUT_FLOAT(FILE,VALUE)  \
  824.   (dtok( FILE, VALUE ))
  825.  
  826. /* This is how to output an assembler line defining an `int' constant.  */
  827.  
  828. #define ASM_OUTPUT_DOUBLE_INT(FILE,VALUE)                  \
  829.     (( 'l' == memory_model ) ?                          \
  830.      (( CONST_INT == GET_CODE( VALUE )) ?                  \
  831.       ( fprintf ( FILE, "\tdc\t$%06x%06x\n",                  \
  832.          (( INTVAL ( VALUE ) >> 24 ) & 0x0000ff ),                \
  833.          ( INTVAL ( VALUE ) & 0xffffff ))) :                  \
  834.       ( fprintf ( FILE, "\tdc\t$%06x%06x\n",                   \
  835.          ((( CONST_DOUBLE_LOW ( VALUE ) >> 24 ) & 0x0000ff ) |      \
  836.           (( CONST_DOUBLE_HIGH ( VALUE ) << 8 ) & 0xffff00 )),    \
  837.          ( CONST_DOUBLE_LOW ( VALUE ) & 0xffffff )))) :              \
  838.      (( CONST_INT == GET_CODE( VALUE )) ?                  \
  839.       ( fprintf ( FILE, "\tdc\t$%06x\n\tdc\t$%06x\n",              \
  840.          ( INTVAL ( VALUE ) & 0xffffff ),                \
  841.          (( INTVAL ( VALUE ) >> 24 ) & 0x0000ff ))) :          \
  842.       ( fprintf ( FILE, "\tdc\t$%06x\n\tdc\t$%06x\n",                \
  843.          ( CONST_DOUBLE_LOW ( VALUE ) & 0xffffff ),          \
  844.          ((( CONST_DOUBLE_LOW ( VALUE ) >> 24 ) & 0x0000ff ) |      \
  845.           (( CONST_DOUBLE_HIGH ( VALUE ) << 8 ) & 0xffff00 ))))))
  846.  
  847. #define ASM_OUTPUT_INT(FILE,VALUE)  \
  848. ( fprintf (FILE, "\tdc "),            \
  849.   output_addr_const (FILE, (VALUE)),        \
  850.   fprintf (FILE, "\n"))
  851.  
  852. /* Likewise for `short' and `char' constants.  */
  853.  
  854. #define ASM_OUTPUT_SHORT(FILE,VALUE)  \
  855. ( fprintf (FILE, "\tdc "),            \
  856.   output_addr_const (FILE, (VALUE)),        \
  857.   fprintf (FILE, "\n"))
  858.  
  859. #define ASM_OUTPUT_CHAR(FILE,VALUE)  \
  860. ( fprintf (FILE, "\tdc "),            \
  861.   output_addr_const (FILE, (VALUE)),        \
  862.   fprintf (FILE, "\n"))
  863.  
  864. /* This is how to output an assembler line for a numeric constant byte.  */
  865.  
  866. #define ASM_OUTPUT_BYTE(FILE,VALUE)  \
  867.   fprintf (FILE, "\tdc $%x\n", (VALUE))
  868.  
  869. #define ASM_OUTPUT_ASCII(FILE, P, SIZE)  \
  870.   output_ascii (FILE, P, SIZE)
  871.  
  872. #define ASM_OUTPUT_CASE_LABEL(STREAM, PREFIX, NUM, TABLE )     \
  873.   ( fprintf (STREAM, "%s\n", DATA_SECTION_ASM_OP ),        \
  874.   ASM_OUTPUT_INTERNAL_LABEL(STREAM, PREFIX, NUM))
  875.  
  876. #define ASM_OUTPUT_CASE_END(STREAM, NUM, TABLE )         \
  877.   fprintf (STREAM, "%s\n", TEXT_SECTION_ASM_OP )        \
  878.  
  879. /* This is how to output an element of a case-vector that is relative.  */
  880.  
  881. #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL)  \
  882.   fprintf (FILE, "\tdc L%d-L%d\n", VALUE, REL)
  883.  
  884. /* This is how to output an element of a case-vector that is absolute.  */
  885.  
  886. #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
  887.   fprintf (FILE, "\tdc L%d\n", VALUE)
  888.  
  889. /* This is how to output an assembler line
  890.    that says to advance the location counter
  891.    to a multiple of 2**LOG bytes.  */
  892.  
  893. #define ASM_OUTPUT_ALIGN(FILE,LOG)
  894.  
  895. #define ASM_OUTPUT_SKIP(FILE,SIZE)  \
  896.   fprintf (FILE, "\tbsc\t%d\n", (SIZE))
  897.  
  898. /* This says how to output an assembler line
  899.    to define a global common symbol.  */
  900.  
  901. #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)          \
  902. (  ASM_GLOBALIZE_LABEL((FILE),(NAME)),                          \
  903.    assemble_name ((FILE), (NAME)),                              \
  904.    fprintf ((FILE), "\tbsc\t%d\n", (ROUNDED)))
  905.  
  906.  
  907. /* This says how to output an assembler line
  908.    to define a local common symbol.  */
  909.  
  910. #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED)  \
  911. ( assemble_name ((FILE), (NAME)),                \
  912.   fprintf ((FILE), "\tbsc\t%d\n", (ROUNDED)))
  913.  
  914. /* Store in OUTPUT a string (made with alloca) containing
  915.    an assembler-name for a local static variable named NAME.
  916.    LABELNO is an integer which is different for each call.  */
  917.  
  918. #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO)    \
  919. ( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10),    \
  920.   sprintf ((OUTPUT), "___%s%d", (NAME), (LABELNO)))
  921.  
  922. /* Define the parentheses used to group arithmetic operations
  923.    in assembler code.  */
  924.  
  925. #define ASM_OPEN_PAREN "("
  926. #define ASM_CLOSE_PAREN ")"
  927.  
  928. /* Define results of standard character escape sequences.  */
  929. #define TARGET_BELL 007
  930. #define TARGET_BS 010
  931. #define TARGET_TAB 011
  932. #define TARGET_NEWLINE 012
  933. #define TARGET_VT 013
  934. #define TARGET_FF 014
  935. #define TARGET_CR 015
  936.  
  937. /* Print operand X (an rtx) in assembler syntax to file FILE.
  938.    CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
  939.    For `%' followed by punctuation, CODE is the punctuation and X is null.
  940. */
  941.  
  942. #define PRINT_OPERAND(FILE, X, CODE) print_operand ( FILE, X, CODE )
  943.  
  944. /* Print a memory address as an operand to reference that memory location.  */
  945.  
  946. #define PRINT_OPERAND_ADDRESS(FILE, ADDR) print_operand_address ( FILE, ADDR )
  947.  
  948. #define ASM_OUTPUT_REG_PUSH( FILE, REGNO )
  949. #define ASM_OUTPUT_REG_POP( FILE, REGNO )
  950.  
  951. #define ASM_OUTPUT_OPCODE( FILE, OPCODE ) 
  952.  
  953. /* the following definitions and declarations are used to efficiently
  954.    implement the use of either memory space. */
  955.  
  956. /* this structure is used within the code generator. it is initialized upon
  957.    first use. */
  958.  
  959. struct dsp_string
  960. {
  961.     int init;
  962.     char string[124];
  963. };
  964.  
  965. /* RETURN_DSP provides a mechanism for the code generator to use this facility
  966.    transparently. */
  967.  
  968. #define RETURN_DSP( str ) \
  969. { static struct dsp_string template = { 0, str }; \
  970.       return fix_mem_space ( & template ); }
  971.  
  972. /* global memory space indicator - either 'x' or 'y'. */
  973. extern char mem_space;
  974. extern char memory_model;
  975. /* tells sdbout which prolog/epilog pair is being used. */
  976. extern int logue_index;
  977.  
  978. extern char *fix_mem_space ( );
  979.  
  980. /* this data type is used to pass information about the function to the
  981.    optimizer and code generator, and pro/epilog generators. */
  982.  
  983. typedef enum 
  984. {
  985.     FUNC_NO_INFO = 0x0000,
  986.     FUNC_ISNT_LEAF = 0x0001,       /* this func makes at least one call */
  987.     FUNC_RETURNS_FLOAT = 0x0002,   /* a float/double value is returned */
  988.     FUNC_HAS_STACK_PARMS = 0x0004, /* this func has at least one stack parm */
  989.     FUNC_RETURNS_VOID =0x0008      /* this function is of type void. */
  990. } func_attributes;
  991.  
  992. /* a global var used for the aformentioned purpose. */
  993. extern func_attributes current_func_info;
  994.  
  995. /* these force a min number of operands allowed. */
  996. #define MIN_RECOG_OPERANDS 16
  997. #define MIN_DUP_OPERANDS 16
  998.  
  999. /* we undef abort so that we can print a proper warning message and not dump
  1000.    core. (code in rtl.c) */
  1001. #undef abort
  1002.  
  1003. /* this is a kludge. 
  1004.    the 56k uses accumulators a and b in weird ways. b can hold either
  1005.    a 48 bit or 24 bit value. if it holds a 48 bit value, there is no way
  1006.    that ( SUBREG:SI ( REG:DI 1 ) 0 ) can be use as an arithmetic operand. 
  1007.    the same rtl expression *can* be used as a move operand, namely b0.
  1008.    eventually we might want to rethink the way that we're numbering registers
  1009.    and possibly make accumulators look like a series of concatenated registers.
  1010.    this, however, would require major rework of the md file, as each
  1011.    SImode arith define_insn would need to be transformed into a define_expand
  1012.    and define_insn pair (for example, to reflect the clobber of a2 and a0
  1013.    in add x0,a). this change could severely inhibit optimization as well. 
  1014.  
  1015.    for now: we wll define INSN_MACHINE_INFO to differentiate between insns
  1016.    that can and cannot accept the above rtl expression type as an operand.
  1017.    */
  1018.  
  1019. typedef struct
  1020. {
  1021.     int can_accept_subreg_acc_p;
  1022.     int no_latency_addr_reg_op_p;
  1023. }
  1024. dsp56k_insn_info;
  1025.  
  1026. #define INSN_MACHINE_INFO dsp56k_insn_info
  1027. #define DEFAULT_MACHINE_INFO FALSE, FALSE
  1028.  
  1029. /* allow certain pragmas. */
  1030. int dsp_process_pragma_line ( );
  1031.  
  1032. #define TARGET_PROCESS_PRAGMA_LINE( f ) \
  1033. dsp_process_pragma_line ( f )
  1034.